home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / BoxKite.dxr / Internal_56_foundation object.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  239 b   |  19 lines

  1. property cards
  2.  
  3. on new me, mycards
  4.   me.cards = mycards
  5.   return me
  6. end
  7.  
  8. on addCard me, newcards
  9.   me.cards.add(newcards)
  10. end
  11.  
  12. on subcards me, itsym
  13.   me.cards.deleteProp(itsym)
  14. end
  15.  
  16. on getlastcard me
  17.   return me.cards[me.cards.count]
  18. end
  19.